服装库存CMS后台├── WebRoot
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── Mydate.jsp
│ ├── WEB-INF
│ │ ├── classes
│ │ │ ├── beans.xml
│ │ │ ├── com
│ │ │ │ └── ssm
│ │ │ │ └── clothing
│ │ │ │ ├── dao
│ │ │ │ │ ├── BaseDao.class
│ │ │ │ │ ├── ClientDao.class
│ │ │ │ │ ├── ColorDao.class
│ │ │ │ │ ├── FunctionDao.class
│ │ │ │ │ ├── MiddleDao.class
│ │ │ │ │ ├── OutmaDao.class
│ │ │ │ │ ├── ProductDao.class
│ │ │ │ │ ├── RoleDao.class
│ │ │ │ │ ├── SizeDao.class
│ │ │ │ │ ├── StockInDao.class
│ │ │ │ │ ├── StockinDetDao.class
│ │ │ │ │ ├── StockoutDao.class
│ │ │ │ │ ├── StockoutdetDao.class
│ │ │ │ │ ├── UserDao.class
│ │ │ │ │ ├── WarehouseDao.class
│ │ │ │ │ └── impl
│ │ │ │ │ ├── BaseDaoImpl.class
│ │ │ │ │ ├── ClientDaoImpl.class
│ │ │ │ │ ├── ColorDaoImpl.class
│ │ │ │ │ ├── FunctionDaoImpl.class
│ │ │ │ │ ├── MiddleDaoImpl.class
│ │ │ │ │ ├── OutmaDaoImpl.class
│ │ │ │ │ ├── ProductDaoImpl.class
│ │ │ │ │ ├── RoleDaoImpl.class
│ │ │ │ │ ├── SizeDaoImpl.class
│ │ │ │ │ ├── StockInDaoImpl.class
│ │ │ │ │ ├── StockinDetDaoImpl.class
│ │ │ │ │ ├── StockoutDaoImpl.class
│ │ │ │ │ ├── StockoutdetDaoImpl.class
│ │ │ │ │ ├── UserDaoImpl.class
│ │ │ │ │ └── WarehouseDaoImpl.class
│ │ │ │ ├── entity
│ │ │ │ │ ├── Client.class
│ │ │ │ │ ├── Color.class
│ │ │ │ │ ├── Function.class
│ │ │ │ │ ├── Middle.class
│ │ │ │ │ ├── Outma.class
│ │ │ │ │ ├── Product.class
│ │ │ │ │ ├── Role.class
│ │ │ │ │ ├── Size.class
│ │ │ │ │ ├── StockIn.class
│ │ │ │ │ ├── StockinDet.class
│ │ │ │ │ ├── Stockout.class
│ │ │ │ │ ├── StockoutDet.class
│ │ │ │ │ ├── User.class
│ │ │ │ │ ├── Warehouse.class
│ │ │ │ │ └── mapper
│ │ │ │ │ ├── ClientMapper.xml
│ │ │ │ │ ├── ColorMapper.xml
│ │ │ │ │ ├── FunctionMapper.xml
│ │ │ │ │ ├── MiddleMapper.xml
│ │ │ │ │ ├── OutmaMapper.xml
│ │ │ │ │ ├── ProductMapper.xml
│ │ │ │ │ ├── RoleMapper.xml
│ │ │ │ │ ├── SizeMapper.xml
│ │ │ │ │ ├── StockInDetMapper.xml
│ │ │ │ │ ├── StockInMapper.xml
│ │ │ │ │ ├── StockOutMapper.xml
│ │ │ │ │ ├── StockoutDetMapper.xml
│ │ │ │ │ ├── UserMapper.xml
│ │ │ │ │ └── WarehouseMapper.xml
│ │ │ │ ├── filter
│ │ │ │ │ ├── EncodingFilter$1.class
│ │ │ │ │ ├── EncodingFilter.class
│ │ │ │ │ └── LoginFilter.class
│ │ │ │ ├── service
│ │ │ │ │ ├── BaseService.class
│ │ │ │ │ ├── ClientService.class
│ │ │ │ │ ├── ColorService.class
│ │ │ │ │ ├── FunctionService.class
│ │ │ │ │ ├── MiddleService.class
│ │ │ │ │ ├── OutmaService.class
│ │ │ │ │ ├── ProductService.class
│ │ │ │ │ ├── RoleService.class
│ │ │ │ │ ├── SizeService.class
│ │ │ │ │ ├── StockInService.class
│ │ │ │ │ ├── StockinDetService.class
│ │ │ │ │ ├── StockoutService.class
│ │ │ │ │ ├── StockoutdetService.class
│ │ │ │ │ ├── UserService.class
│ │ │ │ │ ├── WarehouseService.class
│ │ │ │ │ └── impl
│ │ │ │ │ ├── BaseServiceImpl.class
│ │ │ │ │ ├── ClientServiceImpl.class
│ │ │ │ │ ├── ColorServiceImpl.class
│ │ │ │ │ ├── FunctionServiceImpl.class
│ │ │ │ │ ├── MiddleServiceImpl.class
│ │ │ │ │ ├── OutmaServiceImpl.class
│ │ │ │ │ ├── ProductServiceImpl.class
│ │ │ │ │ ├── RoleServiceImpl.class
│ │ │ │ │ ├── SizeServiceImpl.class
│ │ │ │ │ ├── StockInServiceImpl.class
│ │ │ │ │ ├── StockinDetServiceImpl.class
│ │ │ │ │ ├── StockoutServiceImpl.class
│ │ │ │ │ ├── StockoutdetServiceImpl.class
│ │ │ │ │ ├── UserServiceImpl.class
│ │ │ │ │ └── WarehouseServiceImpl.class
│ │ │ │ ├── utils
│ │ │ │ │ ├── GetTon.class
│ │ │ │ │ ├── ImportExecl.class
│ │ │ │ │ ├── MyAnnotation.class
│ │ │ │ │ ├── PageBean.class
│ │ │ │ │ ├── PrivilegeFilter.class
│ │ │ │ │ ├── RecordMappingToMap.class
│ │ │ │ │ └── WebUtil.class
│ │ │ │ └── web
│ │ │ │ ├── BaseController.class
│ │ │ │ └── basicinfo
│ │ │ │ ├── client
│ │ │ │ │ └── ClientController.class
│ │ │ │ ├── color
│ │ │ │ │ └── ColorController.class
│ │ │ │ ├── datas
│ │ │ │ │ └── DatasController.class
│ │ │ │ ├── outma
│ │ │ │ │ └── OutmaController.class
│ │ │ │ ├── privilege
│ │ │ │ │ ├── FunctionController.class
│ │ │ │ │ └── RoleController.class
│ │ │ │ ├── product
│ │ │ │ │ └── ProductController.class
│ │ │ │ ├── size
│ │ │ │ │ └── SizeController.class
│ │ │ │ ├── stockin
│ │ │ │ │ └── StockinController.class
│ │ │ │ ├── stockinDet
│ │ │ │ │ └── StockinDetController.class
│ │ │ │ ├── stockout
│ │ │ │ │ └── StockoutController.class
│ │ │ │ ├── stockoutdet
│ │ │ │ │ └── StockoutdetController.class
│ │ │ │ ├── user
│ │ │ │ │ └── UserController.class
│ │ │ │ └── warehouse
│ │ │ │ └── WarehouseController.class
│ │ │ ├── jdbc.properties
│ │ │ ├── springmvc-servlet.xml
│ │ │ ├── sqlMapConfig.xml
│ │ │ └── test
│ │ │ └── App.class
│ │ └── web.xml
│ ├── css
│ │ ├── checkbix.min.css
│ │ ├── component.css
│ │ ├── default.css
│ │ ├── font
│ │ │ ├── adminThemes.ttf
│ │ │ ├── adminthemes-webfont.eot
│ │ │ ├── adminthemes-webfont.svg
│ │ │ ├── adminthemes-webfont.ttf
│ │ │ ├── adminthemes-webfont.woff
│ │ │ └── adminthemes-webfont.woff2
│ │ ├── font_eolqem241z66flxr.css
│ │ ├── images.css
│ │ ├── index.css
│ │ ├── jquery.mCustomScrollbar.css
│ │ ├── lanrenzhijia.css
│ │ ├── main.css
│ │ ├── message.css
│ │ ├── news.css
│ │ ├── normalize.css
│ │ ├── prism.css
│ │ ├── reset.css
│ │ ├── style.css
│ │ ├── sweetalert.css
│ │ ├── user.css
│ │ └── zdialog.css
│ ├── help.jsp
│ ├── images
│ │ ├── 1.jpg
│ │ ├── client.jpg
│ │ ├── face.jpg
│ │ ├── loading.png
│ │ ├── man1.jpg
│ │ ├── man10.jpg
│ │ ├── man11.jpg
│ │ ├── man12.jpg
│ │ ├── man13.jpg
│ │ ├── man2.jpg
│ │ ├── man3.jpeg
│ │ ├── man4.jpg
│ │ ├── man5.jpg
│ │ ├── man6.jpg
│ │ ├── man7.jpg
│ │ ├── man8.jpg
│ │ ├── man9.jpg
│ │ ├── thumbs-up.jpg
│ │ ├── userface1.jpg
│ │ ├── userface2.jpg
│ │ ├── userface3.jpg
│ │ ├── userface4.jpg
│ │ ├── userface5.jpg
│ │ ├── women1.png
│ │ ├── women10.jpg
│ │ ├── women11.jpg
│ │ ├── women12.jpg
│ │ ├── women12.png
│ │ ├── women13.jpg
│ │ ├── women14.jpg
│ │ ├── women15.jpg
│ │ ├── women16.jpg
│ │ ├── women2.jpg
│ │ ├── women3.jpg
│ │ ├── women4.jpg
│ │ ├── women5.jpg
│ │ ├── women6.jpg
│ │ ├── women7.jpg
│ │ ├── women8.jpg
│ │ ├── women9.jpg
│ │ ├── 捕获.PNG
│ │ ├── 派多网.png
│ │ ├── 源码说明.txt
│ │ ├── 派多源码网官网.url
│ │ └── 免费源码下载群二维码.png
│ ├── index.jsp
│ ├── js
│ │ ├── Particleground.js
│ │ ├── amcharts.js
│ │ ├── bodyTab.js
│ │ ├── checkbix.min.js
│ │ ├── custom-file-input.js
│ │ ├── dialogs
│ │ │ ├── anchor
│ │ │ │ └── anchor.html
│ │ │ ├── attachment
│ │ │ │ ├── attachment.css
│ │ │ │ ├── attachment.html
│ │ │ │ ├── attachment.js
│ │ │ │ ├── fileTypeImages
│ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ ├── icon_default.png
│ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ └── icon_xls.gif
│ │ │ │ └── images
│ │ │ │ ├── alignicon.gif
│ │ │ │ ├── alignicon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── background
│ │ │ │ ├── background.css
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ └── images
│ │ │ │ ├── bg.png
│ │ │ │ └── success.png
│ │ │ ├── charts
│ │ │ │ ├── chart.config.js
│ │ │ │ ├── charts.css
│ │ │ │ ├── charts.html
│ │ │ │ ├── charts.js
│ │ │ │ └── images
│ │ │ │ ├── charts0.png
│ │ │ │ ├── charts1.png
│ │ │ │ ├── charts2.png
│ │ │ │ ├── charts3.png
│ │ │ │ ├── charts4.png
│ │ │ │ └── charts5.png
│ │ │ ├── emotion
│ │ │ │ ├── emotion.css
│ │ │ │ ├── emotion.html
│ │ │ │ ├── emotion.js
│ │ │ │ └── images
│ │ │ │ ├── 0.gif
│ │ │ │ ├── bface.gif
│ │ │ │ ├── cface.gif
│ │ │ │ ├── fface.gif
│ │ │ │ ├── jxface2.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── tface.gif
│ │ │ │ ├── wface.gif
│ │ │ │ └── yface.gif
│ │ │ ├── gmap
│ │ │ │ └── gmap.html
│ │ │ ├── help
│ │ │ │ ├── help.css
│ │ │ │ ├── help.html
│ │ │ │ └── help.js
│ │ │ ├── image
│ │ │ │ ├── image.css
│ │ │ │ ├── image.html
│ │ │ │ ├── image.js
│ │ │ │ └── images
│ │ │ │ ├── alignicon.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── insertframe
│ │ │ │ └── insertframe.html
│ │ │ ├── internal.js
│ │ │ ├── link
│ │ │ │ └── link.html
│ │ │ ├── map
│ │ │ │ ├── map.html
│ │ │ │ └── show.html
│ │ │ ├── music
│ │ │ │ ├── music.css
│ │ │ │ ├── music.html
│ │ │ │ └── music.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scrawl
│ │ │ │ ├── images
│ │ │ │ │ ├── addimg.png
│ │ │ │ │ ├── brush.png
│ │ │ │ │ ├── delimg.png
│ │ │ │ │ ├── delimgH.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── emptyH.png
│ │ │ │ │ ├── eraser.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── redoH.png
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── scaleH.png
│ │ │ │ │ ├── size.png
│ │ │ │ │ ├── undo.png
│ │ │ │ │ └── undoH.png
│ │ │ │ ├── scrawl.css
│ │ │ │ ├── scrawl.html
│ │ │ │ └── scrawl.js
│ │ │ ├── searchreplace
│ │ │ │ ├── searchreplace.html
│ │ │ │ └── searchreplace.js
│ │ │ ├── snapscreen
│ │ │ │ └── snapscreen.html
│ │ │ ├── spechars
│ │ │ │ ├── spechars.html
│ │ │ │ └── spechars.js
│ │ │ ├── table
│ │ │ │ ├── dragicon.png
│ │ │ │ ├── edittable.css
│ │ │ │ ├── edittable.html
│ │ │ │ ├── edittable.js
│ │ │ │ ├── edittd.html
│ │ │ │ └── edittip.html
│ │ │ ├── template
│ │ │ │ ├── config.js
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── pre0.png
│ │ │ │ │ ├── pre1.png
│ │ │ │ │ ├── pre2.png
│ │ │ │ │ ├── pre3.png
│ │ │ │ │ └── pre4.png
│ │ │ │ ├── template.css
│ │ │ │ ├── template.html
│ │ │ │ └── template.js
│ │ │ ├── video
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── video.css
│ │ │ │ ├── video.html
│ │ │ │ └── video.js
│ │ │ ├── webapp
│ │ │ │ └── webapp.html
│ │ │ └── wordimage
│ │ │ ├── fClipboard_ueditor.swf
│ │ │ ├── imageUploader.swf
│ │ │ ├── tangram.js
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ │ ├── echarts.min.js
│ │ ├── html5.js
│ │ ├── index.js
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery-1.4.4.min.js
│ │ ├── jquery-1.8.2.js
│ │ ├── jquery-v1.min.js
│ │ ├── jquery.custom-file-input.js
│ │ ├── jquery.js
│ │ ├── jquery.mCustomScrollbar.concat.min.js
│ │ ├── jquery.mobile.custom.js
│ │ ├── jquery.mobile.custom.min.js
│ │ ├── jquery.toc.min.js
│ │ ├── lang
│ │ │ ├── en
│ │ │ │ ├── en.js
│ │ │ │ └── images
│ │ │ │ ├── addimage.png
│ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ ├── background.png
│ │ │ │ ├── button.png
│ │ │ │ ├── copy.png
│ │ │ │ ├── deletedisable.png
│ │ │ │ ├── deleteenable.png
│ │ │ │ ├── listbackground.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ ├── rotateleftdisable.png
│ │ │ │ ├── rotateleftenable.png
│ │ │ │ ├── rotaterightdisable.png
│ │ │ │ ├── rotaterightenable.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn
│ │ │ ├── images
│ │ │ │ ├── copy.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn.js
│ │ ├── language.js
│ │ ├── leftNav.js
│ │ ├── main.js
│ │ ├── nav.js
│ │ ├── pie.js
│ │ ├── prism.js
│ │ ├── serial.js
│ │ ├── sweetalert.min.js
│ │ ├── themes
│ │ │ ├── default
│ │ │ │ ├── css
│ │ │ │ │ ├── ueditor.css
│ │ │ │ │ └── ueditor.min.css
│ │ │ │ ├── dialogbase.css
│ │ │ │ └── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── button-bg.gif
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── charts.png
│ │ │ │ ├── cursor_h.gif
│ │ │ │ ├── cursor_h.png
│ │ │ │ ├── cursor_v.gif
│ │ │ │ ├── cursor_v.png
│ │ │ │ ├── dialog-title-bg.png
│ │ │ │ ├── filescan.png
│ │ │ │ ├── highlighted.gif
│ │ │ │ ├── icons-all.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── loaderror.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── pagebreak.gif
│ │ │ │ ├── scale.png
│ │ │ │ ├── sortable.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── sparator_v.png
│ │ │ │ ├── table-cell-align.png
│ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ ├── toolbar_bg.png
│ │ │ │ ├── unhighlighted.gif
│ │ │ │ ├── upload.png
│ │ │ │ ├── videologo.gif
│ │ │ │ ├── word.gif
│ │ │ │ └── wordpaste.png
│ │ │ └── iframe.css
│ │ ├── ueditor.all.min.js
│ │ ├── ueditor.config.js
│ │ ├── verificationNumbers.js
│ │ └── zdialog.js
│ ├── json
│ │ ├── images.json
│ │ ├── linksList.json
│ │ ├── message.json
│ │ ├── newsList.json
│ │ ├── systemParameter.json
│ │ ├── userface.json
│ │ └── usersList.json
│ ├── laydate
│ │ ├── laydate.js
│ │ └── theme
│ │ └── default
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ └── laydate.css
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ ├── icon.png
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 6.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 7.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ ├── dest
│ │ │ │ └── layui.all.js
│ │ │ └── modules
│ │ │ ├── code.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── layim.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ └── layui.js
│ ├── login.jsp
│ └── page
│ ├── 404.jsp
│ ├── client
│ │ ├── addclient.jsp
│ │ └── clientShow.jsp
│ ├── color
│ │ ├── addcolor.jsp
│ │ └── colorShow.jsp
│ ├── datas
│ │ └── datasShow.jsp
│ ├── datas.jsp
│ ├── img
│ │ └── images.js
│ ├── links
│ │ ├── linksAdd.js
│ │ └── linksList.js
│ ├── main.jsp
│ ├── materials.jsp
│ ├── message
│ │ └── message.js
│ ├── news
│ │ ├── newsAdd.js
│ │ └── newsList.js
│ ├── outma
│ │ ├── addoutma.jsp
│ │ └── outmaShow.jsp
│ ├── privilege
│ │ ├── function
│ │ │ ├── addfunction.jsp
│ │ │ └── functionShow.jsp
│ │ └── role
│ │ ├── addrole.jsp
│ │ └── roleShow.jsp
│ ├── product
│ │ ├── addpro.jsp
│ │ └── productShow.jsp
│ ├── repertory.jsp
│ ├── role.jsp
│ ├── size
│ │ ├── addsize.jsp
│ │ └── sizeShow.jsp
│ ├── stockin
│ │ ├── addstockin.jsp
│ │ ├── datetime.js
│ │ └── stockinShow.jsp
│ ├── stockindet
│ │ ├── addstockindet.jsp
│ │ └── stockindetShow.jsp
│ ├── stockout
│ │ ├── addstockout.jsp
│ │ └── stockoutShow.jsp
│ ├── stockoutdet
│ │ ├── addstockoutdet.jsp
│ │ └── stockoutdetShow.jsp
│ ├── systemParameter
│ │ └── systemParameter.js
│ ├── user
│ │ ├── addUser.js
│ │ ├── adduserInfo.jsp
│ │ ├── allUsers.js
│ │ ├── changePwd.jsp
│ │ ├── user.js
│ │ ├── userInfo.jsp
│ │ └── userShow.jsp
│ └── warehouse
│ ├── addware.jsp
│ └── warehouseShow.jsp
├── clothing.sql
├── sql脚本
│ └── clothingRepertory.sql
├── src
│ ├── beans.xml
│ ├── com
│ │ └── ssm
│ │ └── clothing
│ │ ├── dao
│ │ │ ├── BaseDao.java
│ │ │ ├── ClientDao.java
│ │ │ ├── ColorDao.java
│ │ │ ├── FunctionDao.java
│ │ │ ├── MiddleDao.java
│ │ │ ├── OutmaDao.java
│ │ │ ├── ProductDao.java
│ │ │ ├── RoleDao.java
│ │ │ ├── SizeDao.java
│ │ │ ├── StockInDao.java
│ │ │ ├── StockinDetDao.java
│ │ │ ├── StockoutDao.java
│ │ │ ├── StockoutdetDao.java
│ │ │ ├── UserDao.java
│ │ │ ├── WarehouseDao.java
│ │ │ └── impl
│ │ │ ├── BaseDaoImpl.java
│ │ │ ├── ClientDaoImpl.java
│ │ │ ├── ColorDaoImpl.java
│ │ │ ├── FunctionDaoImpl.java
│ │ │ ├── MiddleDaoImpl.java
│ │ │ ├── OutmaDaoImpl.java
│ │ │ ├── ProductDaoImpl.java
│ │ │ ├── RoleDaoImpl.java
│ │ │ ├── SizeDaoImpl.java
│ │ │ ├── StockInDaoImpl.java
│ │ │ ├── StockinDetDaoImpl.java
│ │ │ ├── StockoutDaoImpl.java
│ │ │ ├── StockoutdetDaoImpl.java
│ │ │ ├── UserDaoImpl.java
│ │ │ └── WarehouseDaoImpl.java
│ │ ├── entity
│ │ │ ├── Client.java
│ │ │ ├── Color.java
│ │ │ ├── Function.java
│ │ │ ├── Middle.java
│ │ │ ├── Outma.java
│ │ │ ├── Product.java
│ │ │ ├── Role.java
│ │ │ ├── Size.java
│ │ │ ├── StockIn.java
│ │ │ ├── StockinDet.java
│ │ │ ├── Stockout.java
│ │ │ ├── StockoutDet.java
│ │ │ ├── User.java
│ │ │ ├── Warehouse.java
│ │ │ └── mapper
│ │ │ ├── ClientMapper.xml
│ │ │ ├── ColorMapper.xml
│ │ │ ├── FunctionMapper.xml
│ │ │ ├── MiddleMapper.xml
│ │ │ ├── OutmaMapper.xml
│ │ │ ├── ProductMapper.xml
│ │ │ ├── RoleMapper.xml
│ │ │ ├── SizeMapper.xml
│ │ │ ├── StockInDetMapper.xml
│ │ │ ├── StockInMapper.xml
│ │ │ ├── StockOutMapper.xml
│ │ │ ├── StockoutDetMapper.xml
│ │ │ ├── UserMapper.xml
│ │ │ └── WarehouseMapper.xml
│ │ ├── filter
│ │ │ ├── EncodingFilter.java
│ │ │ └── LoginFilter.java
│ │ ├── service
│ │ │ ├── BaseService.java
│ │ │ ├── ClientService.java
│ │ │ ├── ColorService.java
│ │ │ ├── FunctionService.java
│ │ │ ├── MiddleService.java
│ │ │ ├── OutmaService.java
│ │ │ ├── ProductService.java
│ │ │ ├── RoleService.java
│ │ │ ├── SizeService.java
│ │ │ ├── StockInService.java
│ │ │ ├── StockinDetService.java
│ │ │ ├── StockoutService.java
│ │ │ ├── StockoutdetService.java
│ │ │ ├── UserService.java
│ │ │ ├── WarehouseService.java
│ │ │ └── impl
│ │ │ ├── BaseServiceImpl.java
│ │ │ ├── ClientServiceImpl.java
│ │ │ ├── ColorServiceImpl.java
│ │ │ ├── FunctionServiceImpl.java
│ │ │ ├── MiddleServiceImpl.java
│ │ │ ├── OutmaServiceImpl.java
│ │ │ ├── ProductServiceImpl.java
│ │ │ ├── RoleServiceImpl.java
│ │ │ ├── SizeServiceImpl.java
│ │ │ ├── StockInServiceImpl.java
│ │ │ ├── StockinDetServiceImpl.java
│ │ │ ├── StockoutServiceImpl.java
│ │ │ ├── StockoutdetServiceImpl.java
│ │ │ ├── UserServiceImpl.java
│ │ │ └── WarehouseServiceImpl.java
│ │ ├── utils
│ │ │ ├── GetTon.java
│ │ │ ├── ImportExecl.java
│ │ │ ├── MyAnnotation.java
│ │ │ ├── PageBean.java
│ │ │ ├── PrivilegeFilter.java
│ │ │ ├── RecordMappingToMap.java
│ │ │ └── WebUtil.java
│ │ └── web
│ │ ├── BaseController.java
│ │ └── basicinfo
│ │ ├── client
│ │ │ └── ClientController.java
│ │ ├── color
│ │ │ └── ColorController.java
│ │ ├── datas
│ │ │ └── DatasController.java
│ │ ├── outma
│ │ │ └── OutmaController.java
│ │ ├── privilege
│ │ │ ├── FunctionController.java
│ │ │ └── RoleController.java
│ │ ├── product
│ │ │ └── ProductController.java
│ │ ├── size
│ │ │ └── SizeController.java
│ │ ├── stockin
│ │ │ └── StockinController.java
│ │ ├── stockinDet
│ │ │ └── StockinDetController.java
│ │ ├── stockout
│ │ │ └── StockoutController.java
│ │ ├── stockoutdet
│ │ │ └── StockoutdetController.java
│ │ ├── user
│ │ │ └── UserController.java
│ │ └── warehouse
│ │ └── WarehouseController.java
│ ├── jdbc.properties
│ ├── springmvc-servlet.xml
│ ├── sqlMapConfig.xml
│ └── test
│ └── App.java
└── 架包
├── aopalliance-1.0.jar
├── aspectjweaver-1.7.2.jar
├── c3p0-0.9.1.2.jar
├── commons-beanutils-1.8.0.jar
├── commons-codec-1.5.jar
├── commons-collections-3.2.jar
├── commons-fileupload-1.2.2.jar
├── commons-io-2.0.1.jar
├── commons-lang-2.4.jar
├── commons-logging-1.1.1.jar
├── dom4j-1.6.1.jar
├── ezmorph-1.0.6.jar
├── face_sdk-1.3.5.jar
├── geronimo-servlet_3.0_spec-1.0.jar
├── hamcrest-core-1.1.jar
├── jcommon-1.0.16.jar
├── jfreechart-1.0.13.jar
├── json-lib-2.4-jdk15.jar
├── junit-4.9.jar
├── jxl-2.4.2.jar
├── log4j-1.2.13.jar
├── mybatis-3.2.2.jar
├── mybatis-spring-1.2.0.jar
├── mysql-connector-java-5.1.10.jar
├── ojdbc5.jar
├── poi-3.9.jar
├── poi-ooxml-3.9.jar
├── poi-ooxml-schemas-3.9.jar
├── servlet-api-2.5.jar
├── servlet-api-6.0.33.jar
├── slf4j-api-1.7.5.jar
├── slf4j-log4j12-1.7.5.jar
├── spring-aop-3.2.6.RELEASE.jar
├── spring-beans-3.2.6.RELEASE.jar
├── spring-context-3.2.6.RELEASE.jar
├── spring-core-3.2.6.RELEASE.jar
├── spring-expression-3.2.6.RELEASE.jar
├── spring-jdbc-3.2.6.RELEASE.jar
├── spring-orm-3.2.6.RELEASE.jar
├── spring-test-3.2.6.RELEASE.jar
├── spring-tx-3.2.6.RELEASE.jar
├── spring-web-3.2.6.RELEASE.jar
├── spring-webmvc-3.2.6.RELEASE.jar
├── stax-api-1.0.1.jar
├── xml-apis-1.0.b2.jar
└── xmlbeans-2.3.0.jar
144 directories, 750 files
评论